home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1997 August
/
Walnut Creek CDROM.7z
/
LISTINGS
/
V_11_07
/
FILE.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-01-05
|
298 b
|
17 lines
/*** File Class Implementation: file.c ***/
#include "file.h"
CONSTRUCTOR(File,())
CONSTRUCT(Object,())
END_CONSTRUCTOR
DESTRUCTOR(File)
END_DESTRUCTOR
DEF_CLASS(File,Object)
DEF_ABSTRACT(File,Seek);
DEF_ABSTRACT(File,Read);
DEF_ABSTRACT(File,Write);
END_CLASS